WISLYFLUX FULL GUIDE WITH EXAMPLES



WHAT IS WISLYFLUX?

WislyFlux is a human-readable logic and scripting programming language designed for:

- Logic Building
- Automation
- Console Applications
- Runtime Workflows
- Beginner Programming
- Interactive Command Systems

File Extension:
.wfx

Runtime Type:
Interpreted Language



STARTING WISLYFLUX

Run:
WislyFlux.exe

Runtime:

=== Welcome To WislyFlux ===
Extension: .wfx
Type: help



==================================================
BASIC COMMANDS
==================================================



1. WELCOME COMMAND

Command:
hello

Output:
Welcome To WislyFlux



==================================================
PRINTING OUTPUT
==================================================



2. PRINT DIRECT TEXT

Command:
broadcast => Hello World

Output:
Hello World



3. PRINT VARIABLES

Command:
broadcast => username

Output:
Ali

Meaning:
Prints stored variable value from memory.



==================================================
VARIABLE SYSTEM
==================================================



4. INTEGER VARIABLES

Command:
inject integer into age from 20

Output:
Integer Stored

Stored In Memory:
age = 20



5. TEXT VARIABLES

Command:
inject text into student from Ali

Output:
Text Stored

Stored In Memory:
student = Ali



==================================================
USER INPUT SYSTEM
==================================================



6. CAPTURE USER INPUT

Command:
capture input into username

Runtime:
INPUT >>>

User Types:
Ahmed

Output:
Input Stored

Stored In Memory:
username = Ahmed



7. PRINT USER INPUT

Command:
broadcast => username

Output:
Ahmed



==================================================
LOOP SYSTEM
==================================================



8. LOOP EXAMPLE

Command:
cycle 3

Runtime:
Loop Message >>>

User Types:
Hello

Output:
Hello
Hello
Hello



Meaning:
Repeats message 3 times.



==================================================
CONDITION SYSTEM
==================================================



9. CONDITION EXAMPLE

Program:

inject integer into marks from 85

verify marks greater_than 50

Output:

Integer Stored

Condition True



Meaning:
Checks if:
85 > 50



10. SECOND CONDITION EXAMPLE

Program:

inject integer into age from 10

verify age greater_than 18

Output:

Integer Stored

Condition False



Meaning:
Checks if:
10 > 18



==================================================
FUNCTION SYSTEM
==================================================



11. CREATE FUNCTION

Command:
forge function greet

Output:
Function Created: greet



==================================================
FILE EXECUTION
==================================================



12. RUN SCRIPT FILE

Command:
runfile main.wfx

Meaning:
Runs external WislyFlux script files.



Example main.wfx File:

hello

inject text into user from Ahmed

broadcast => user



Output:

Welcome To WislyFlux

Text Stored

Ahmed



==================================================
EXITING WISLYFLUX
==================================================



13. TERMINATE LANGUAGE

Command:
terminate

Output:
WislyFlux Closed



==================================================
FULL EXAMPLE PROGRAM 1
==================================================



STUDENT RESULT SYSTEM

Program:

hello

inject text into student from Ali

inject integer into marks from 85

broadcast => student

broadcast => marks

verify marks greater_than 50



Program Output:

Welcome To WislyFlux

Text Stored

Integer Stored

Ali

85

Condition True



Purpose:
Creates a student result checking system.



==================================================
FULL EXAMPLE PROGRAM 2
==================================================



LOGIN STYLE SYSTEM

Program:

hello

capture input into username

broadcast => username



Runtime:

Welcome To WislyFlux

INPUT >>>



User Types:
Ahmed



Output:

Input Stored

Ahmed



Purpose:
Creates an interactive login-style console program.



==================================================
FULL EXAMPLE PROGRAM 3
==================================================



LOOP MESSAGE SYSTEM

Program:

hello

cycle 5



Runtime:

Loop Message >>>



User Types:
WislyFlux



Output:

WislyFlux
WislyFlux
WislyFlux
WislyFlux
WislyFlux



Purpose:
Creates repeated automated output using loop execution.



==================================================
FULL EXAMPLE PROGRAM 4
==================================================



AGE VERIFICATION SYSTEM

Program:

inject integer into age from 22

broadcast => age

verify age greater_than 18



Output:

Integer Stored

22

Condition True



Purpose:
Checks adult age verification logic.



==================================================
WHAT CAN WISLYFLUX BUILD?
==================================================



- Logic Systems
- Automation Scripts
- Console Applications
- Interactive Runtime Programs
- Workflow Systems
- Educational Coding Projects
- Beginner Programming Apps
- Command-Based Systems
- AI Workflow Foundations



==================================================
FUTURE FEATURES
==================================================



- Advanced Functions
- If Else System
- Arrays
- Objects
- GUI Design
- AI Commands
- Web Integration
- Package Manager
- Modules
- Native Compiler
- Smart Runtime Engine